@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
body{
  background: #8769ac;
}
nav{
  background: #f6f0ff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 100px;



  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1;
  margin-bottom: 20px;
  border-bottom: 1px solid silver;
}
nav .logo{
  color: #b383ff;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1px;
}
nav .nav-items{
  display: flex;
  flex: 1;
  padding: 0 0 0 40px;
}


nav .nav-items li{
  list-style: none;
  padding: 0 15px;
  position: relative  ;
}
nav .nav-items li a{
  color: #471e7c;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
nav .nav-items li a:hover{
  color: #7715fe;
}
nav form{
  display: flex;
  height: 40px;
  padding: 2px;
  background: #1e232b;
  min-width: 18%!important;
  border-radius: 2px;
  border: 1px solid rgba(155,155,155,0.2);
}
nav form .search-data{
  width: 100%;
  height: 100%;
  padding: 0 10px;
  color: #fff;
  font-size: 17px;
  border: none;
  font-weight: 500;
  background: none;
}
nav form button{
  padding: 0 15px;
  color: #fff;
  font-size: 17px;
  background: #471e7c;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
nav form button:hover{
  background: #7715fe;
}
nav .menu-icon,
nav .cancel-icon,
nav .search-icon{
  width: 40px;
  text-align: center;
  margin: 0 50px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  display: none;
}
nav .menu-icon span,
nav .cancel-icon,
nav .search-icon{
  display: none;
}
@media (max-width: 1245px) {
  nav{
    padding: 0 50px;
  }
}
@media (max-width: 1140px){
  nav{
    padding: 0px;
  }
  nav .logo{
    flex: 2;
    text-align: center;
  }
  nav .nav-items{
    position: fixed;
    z-index: 99;
    top: 70px;
    width: 100%;
    left: -100%;
    height: 100%;
    padding: 10px 50px 0 50px;
    text-align: center;
    background: #14181f;
    display: inline-block;
    transition: left 0.3s ease;
  }
  nav .nav-items.active{
    left: 0px;
  }
  nav .nav-items li{
    line-height: 40px;
    margin: 30px 0;
  }
  nav .nav-items li a{
    font-size: 20px;
  }
  nav form{
    position: absolute;
    top: 80px;
    right: 50px;
    opacity: 0;
    pointer-events: none;
    transition: top 0.3s ease, opacity 0.1s ease;
  }
  nav form.active{
    top: 95px;
    opacity: 1;
    pointer-events: auto;
  }
  nav form:before{
    position: absolute;
    content: "";
    top: -13px;
    right: 0px;
    width: 0;
    height: 0;
    z-index: -1;
    border: 10px solid transparent;
    border-bottom-color: #1e232b;
    margin: -20px 0 0;
  }
  nav form:after{
    position: absolute;
    content: '';
    height: 60px;
    padding: 2px;
    background: #1e232b;
    border-radius: 2px;
    min-width: calc(100% + 20px);
    z-index: -2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  nav .menu-icon{
    display: block;
  }
  nav .search-icon,
  nav .menu-icon span{
    display: block;
  }
  nav .menu-icon span.hide,
  nav .search-icon.hide{
    display: none;
  }
  nav .cancel-icon.show{
    display: block;
  }
}

nav .logo.space{
  color: red;
  padding: 0 5px 0 0;
}
@media (max-width: 980px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 20px;
  }
  nav form{
    right: 30px;
  }
}
@media (max-width: 350px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 10px;
    font-size: 16px;
  }
}

.nav-items li:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  
}

.nav-items li:hover .dropdown-menu ul {
  display: block !important;
  margin: 20px 10px ;
  padding: 0 !important;
  text-align: center;
}

.dropdown-menu ul li {
  width: 170px;
  padding: 10px ;
}

.dropdown-menu {
  display: none;
  background: #f6f0ff;
  color: #7489C6;
  border: .5px solid grey ;
  border-radius: 5px;
}


nav label{
  line-height: 85px;
  padding: 0 80px;
  font-size: 50px;
  color: #0d0d0d;
  font-family: 'Montserrat', sans-serif;
}
nav span{
  color: red;
}

/* @import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
body{
  background: #8769ac;
  overflow-x: hidden;
}
nav{
  background: #f6f0ff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 100px;



  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1;
  margin-bottom: 20px;
  border-bottom: 1px solid silver;
}
nav .logo{
  color: #b383ff;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1px;
}
nav .nav-items{
  display: flex;
  flex: 1;
  padding: 0 0 0 40px;
}


nav .nav-items li{
  list-style: none;
  padding: 0 15px;
  position: relative;
}
nav .nav-items li a{
  color: #471e7c;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
nav .nav-items li a:hover{
  color: #7715fe;
}

nav span {
  color: #471e7c;
}
nav form{
  display: flex;
  height: 40px;
  padding: 2px;
  background: #1e232b;
  min-width: 18%!important;
  border-radius: 2px;
  border: 1px solid rgba(155,155,155,0.2);
}
nav form .search-data{
  width: 100%;
  height: 100%;
  padding: 0 10px;
  color: #fff;
  font-size: 17px;
  border: none;
  font-weight: 500;
  background: none;
}
nav form button{
  padding: 0 15px;
  color: #fff;
  font-size: 17px;
  background: #471e7c;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
nav form button:hover{
  background: #7715fe;
}
nav .menu-icon,
nav .cancel-icon,
nav .search-icon{
  width: 40px;
  text-align: center;
  margin: 0 50px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  display: none;
}
nav .menu-icon span,
nav .cancel-icon,
nav .search-icon{
  display: none;
}
@media (max-width: 1245px) {
  nav{
    padding: 0 50px;
  }
}
@media (max-width: 1440px){
  nav{
    padding: 0px;
  }
  nav .logo{
    flex: 2;
    text-align: center;
  }
  nav .nav-items{
    position: fixed;
    z-index: 99;
    top: 70px;
    width: 100%;
    left: -100%;
    height: 100%;
    padding: 10px 50px 0 50px;
    text-align: center;
    background: #14181f;
    display: inline-block;
    transition: left 0.3s ease;
  }
  nav .nav-items.active{
    left: 0px;
  }
  nav .nav-items li{
    line-height: 40px;
    margin: 30px 0;
  }
  nav .nav-items li a{
    font-size: 20px;
  }
  nav form{
    position: absolute;
    top: 80px;
    right: 50px;
    opacity: 0;
    pointer-events: none;
    transition: top 0.3s ease, opacity 0.1s ease;
  }
  nav form.active{
    top: 95px;
    opacity: 1;
    pointer-events: auto;
  }
  nav form:before{
    position: absolute;
    content: "";
    top: -13px;
    right: 0px;
    width: 0;
    height: 0;
    z-index: -1;
    border: 10px solid transparent;
    border-bottom-color: #1e232b;
    margin: -20px 0 0;
  }
  nav form:after{
    position: absolute;
    content: '';
    height: 60px;
    padding: 2px;
    background: #1e232b;
    border-radius: 2px;
    min-width: calc(100% + 20px);
    z-index: -2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  nav .menu-icon{
    display: block;
  }
  nav .search-icon,
  nav .menu-icon span{
    display: block;
  }
  nav .menu-icon span.hide,
  nav .search-icon.hide{
    display: none;
  }
  nav .cancel-icon.show{
    display: block;
  }
} */
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.content header{
  font-size: 30px;
  font-weight: 700;
}
.content .text{
  font-size: 30px;
  font-weight: 700;
}
.space{
  margin: 10px 0;
}
/* nav .logo.space{
  color: red;
  padding: 0 5px 0 0;
}
@media (max-width: 980px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 20px;
  }
  nav form{
    right: 30px;
  }
}
@media (max-width: 350px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 10px;
    font-size: 16px;
  }
} */
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.content header{
  font-size: 30px;
  font-weight: 700;
}
.content .text{
  font-size: 30px;
  font-weight: 700;
}
.content .space{
  margin: 10px 0;
}

/* .nav-items li:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  
}

.nav-items li:hover .dropdown-menu ul {
  display: block !important;
  margin: 20px 10px ;
  padding: 0 !important;
  text-align: center;
}

.dropdown-menu ul li {
  width: 170px;
  padding: 10px ;
}

.dropdown-menu {
  display: none;
} */

















#preloader {
  background: #1C273A url(media/ld.gif) no-repeat center center;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
  background-size: 18%;
}
.dummy {
  display: none;
}
.wrapper {
  position: fixed;
  bottom: 50px;
  right: -370px;
  max-width: 345px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.wrapper.show {
  right: 20px;
}
.wrapper header {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
header i {
  color: #4070f4;
  font-size: 32px;
}
header h2 {
  color: #4070f4;
  font-weight: 500;
}
.wrapper .data {
  margin-top: 16px;
}
.wrapper .data p {
  color: #333;
  font-size: 16px;
}
.data p a {
  color: #4070f4;
  text-decoration: none;
}
.data p a:hover {
  text-decoration: underline;
}
.wrapper .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons .button {
  border: none;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  background: #4070f4;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
}
.buttons #acceptBtn:hover {
  background-color: #034bf1;
}
#declineBtn {
  border: 2px solid #4070f4;
  background-color: #fff;
  color: #4070f4;
}
#declineBtn:hover {
  background-color: #4070f4;
  color: #fff;
}


.sticky_links {
  position: fixed;
    right: 0 !important;
    top: 120px;
    left: unset;
    width: 50px;
    margin: 0;
    display: flex !important;
    flex-direction: row !important;
    transform: rotate(-90deg);
    text-align: center !important;
    align-items: center;
    justify-content: center;
    margin-top: 100px;

   
  
}


.sticky_links li a {
  text-align: center;
  text-decoration: none;
  color: #f6f0ff;
  list-style: none;
  background: #471e7c;
  padding-bottom: 10px !important;
}

.sticky_links li  {
  background: #471e7c;
  padding: 4px 40px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  list-style: none;
  margin-right: 24px!important;
}


























































.r1 {
    margin: 0 auto;
}

.int {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

}

.cen1 {
    text-align: center;
    color: #f6f0ff;
    line-height: 30px;
}

.cen1 h1 {
    font-size: 80px;
    font-weight: 700;
}

.cen1 button {
    padding: 9px 17px;
    border: none;
    border-radius: 55px;
    background: #471e7c;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    margin-top: 30px;
    transition: 0.2s ;
}


.cen1 button a {
    color: #fff;
    text-decoration: none;
}


.cen1 button:hover {
    background: #7489C6;
    color: #fff;
    text-decoration: none;
    scale: 1.1; }





    .r2 {
        margin: 0 auto;
        color: #f6f0ff;
        width: 60% !important;
        text-align: center;
        margin-bottom: 150px;

    }

    .r2 h1 {
        font-size: 60px;
        font-weight: 700;
    }

    .r2 p {
        font-size: 18px;
        font-weight: 420;
    
    }


    #app {
        width: 100% !important;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .cen3 {
      margin: 0 auto;
    }




    .container {
        position: relative;
        
        width: 100%;
        background : #471e7c;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
      }
      .container header {
        font-size: 1.5rem;
        color: #f6f0ff ;
        font-weight: 500;
        text-align: center;
      }










      .container form{
        margin-top: 30px;
        text-align: center !important;
      }

      .container form  input{
        width: 100%;
        margin-top: 20px;
      }
      .container form label {
        color: #f6f0ff;
      }

      .container form:where(.input-box input) {
        position: relative;
        height: 50px;
        width: 100%;
        outline: none;
        font-size: 1rem;
        color: #707070;
        margin-top: 8px;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding: 0px;
      }
      .container form input:focus {
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
      }
      .container form .column {
        display: flex;
        column-gap: 15px;
      }
      .container form {
        margin-top: 20px;
      }
   
      .container form {
        display: flex;
        align-items: center;
        column-gap: 50px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
      }
      .container form  {
        column-gap: 5px;
      }
      .gender input {
        accent-color: rgb(130, 106, 251);
      }
      .container form {
        cursor: pointer;
      }
      .gender label {
        color: #707070;
      }
   
      /* #con {
        height: 2rem;
        width: 100% !important;
        outline: none;
        border: none;
        color: #707070;
        font-size: 1rem;
        margin: 0;
        border-radius: 5px ;
        border: none;
        padding: 0px 10px;
      } */

      .container form input {
        margin-bottom: 18px;
        margin-top: 2px !important;
        height: 2.2rem;
        border-radius: 5px ;
        border: none;
        padding: 0px 10px;
      }

      .select-box {
        width: 100%;
        margin: 0 !important;
      }

      .bun {
        height: 55px !important;
        width: 100%;
        color: #fff;
        font-size: 1rem;
        font-weight: 400;
        margin-top: 30px;
        border: none;
        cursor: pointer;
        transition: all 0.2s ease;
        background: rgb(130, 106, 251);
      }
      .conatiner form button:hover {
        background: rgb(88, 56, 250);
      }
      /*Responsive*/
      @media screen and (max-width: 500px) {
        .container form .column {
          flex-wrap: wrap;
        }
        .form :where(.gender-option, .gender) {
          row-gap: 15px;
        }
      }


   .address {
   width: 100%;
   }

  .address input {
   width: 100%;
   }

      .conatiner form ul {
        font-size: 10px;
        display: flex;
        flex-direction: row;
      }

      .cho {
        display: flex;
        flex-direction:row ;
       align-items: center !important;
       justify-content: center !important;
       align-items: center;
       vertical-align: middle;
      
        padding-top: 20px;
      }

      .cho p { 
        margin-bottom: 0 !important;
        margin-left: 5px;
        width: 380% !important;
      }


      .column {
        display: flex;
        text-align: center;
        flex-direction: row;
        justify-content: center !important;
        margin-bottom: 15px;
        padding: 0px !important;
        min-width: 100%;
      }

      #city {
        width:100%;
        margin-top: 0px !important;
      }

      #con { 
        width: 100% !important;
        margin: 0 auto;
        height: 2.2rem;
        border-radius: 5px;
      }


    #type {
      width: 100%;
      height: 2.2rem;
      border-radius: 5px;
    }
    
    #post {
      margin-top: 0 !important;
    }

      #check {
          width: 30px !important;
         margin-bottom: 0;
      }


      @media (max-width: 1440px) {
        .r2 {
          width: 100%;
         
        }
        .sticky_links {
          position: absolute;
        }
      }


      @media screen  and (max-width: 770px) {
        .cen2 h1 {
          min-width: 90% !important;
        }

        .r2 {
          width: 100% !important;
          padding: 10px 20px;
        }
      }








































.footer {
    background: #10182F;
    border-radius: 6px;
  }
  .footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3.5rem;
    padding: 60px;
  }
  .footer-row .footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
  }
  .footer-col .links {
    margin-top: 20px;
  }
  .footer-col .links li {
    list-style: none;
    margin-bottom: 10px;
  }
  .footer-col .links li a {
    text-decoration: none;
    color: #bfbfbf;
  }
  .footer-col .links li a:hover {
    color: #fff;
  }
  .footer-col p {
    margin: 20px 0;
    color: #bfbfbf;
    max-width: 300px;
  }
  .footer-col form {
    display: flex;
    gap: 5px;
  }
  .footer-col input {
    height: 40px;
    border-radius: 6px;
    background: none;
    width: 100%;
    outline: none;
    border: 1px solid #7489C6 ;
    caret-color: #fff;
    color: #fff;
    padding-left: 10px;
  }
  .footer-col input::placeholder {
    color: #ccc;
  }
   .footer-col form button {
    background: #fff;
    outline: none;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s ease;
  }
  .footer-col form button:hover {
    background: #cecccc;
  }
  .footer-col .icons {
    display: flex;
    margin-top: 30px;
    gap: 30px;
    cursor: pointer;
  }
  .footer-col .icons i {
    color: #afb6c7;
  }
  .footer-col .icons i:hover  {
    color: #fff;
  }
  @media (max-width: 768px) {
    .footer {
      position: relative;
      bottom: 0;
      left: 0;
      transform: none;
      width: 100%;
      border-radius: 0;
    }
    .footer .footer-row {
      padding: 20px;
      gap: 1rem;
    }
    .footer-col form {
      display: block;
    }
    .footer-col form :where(input, button) {
      width: 100%;
    }
  }

  .footer-row .footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
  }


  .footer-col .links {
    margin-top: 20px;
    padding-left: 0 !important;
  }